To start building an xcode framework, make sure that you set the packaging of your pom.xml to either xcode-dynamic-framework or xcode-static-framework as seen below:
<packaging>xcode-static-framework<packaging>
Generally you will consume an xcode framework with an iOS application in this plugin. Assuming you have a packaging of "xcode-application" all you have to do is include your framework as a dependency in your dependency section
<dependency> <groupId>com.my.group<groupId> <artifactId>my-framework<artifactId> <version>1.0.0<version> <type>xcode-static-framework<type> <dependency>